type hash/crc32.digest

10 uses

	hash/crc32 (current package)
		crc32.go#L137: type digest struct {
		crc32.go#L151: 	return &digest{0, tab}
		crc32.go#L161: func (d *digest) Size() int { return Size }
		crc32.go#L163: func (d *digest) BlockSize() int { return 1 }
		crc32.go#L165: func (d *digest) Reset() { d.crc = 0 }
		crc32.go#L172: func (d *digest) MarshalBinary() ([]byte, error) {
		crc32.go#L180: func (d *digest) UnmarshalBinary(b []byte) error {
		crc32.go#L230: func (d *digest) Write(p []byte) (n int, err error) {
		crc32.go#L237: func (d *digest) Sum32() uint32 { return d.crc }
		crc32.go#L239: func (d *digest) Sum(in []byte) []byte {